home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSOXP User Places 2 Sort.xpl < prev    next >
Text File  |  2004-01-29  |  2KB  |  75 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="7"
  3. "COUNT"="5"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office XP\Open/Save Dialog\User Defined Place 2"
  5. "NAME"="Sort Order"
  6. "VERSION"="1.10"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="(Default)"
  9. "TEXT 2"="Sort by Name"
  10. "TEXT 3"="Sort by Type"
  11. "TEXT 4"="Sort by Size"
  12. "TEXT 5"="Sort by Date"
  13. "DESCRIPTION 1"="If you wish a different sort order for your user defined place, you can simply configure it here."
  14. "DESCRIPTION 2"="Please note that this setting will only be applied to the folder of the user defined place itself. If you change to a subfolder of that folder, Office will apply the default sort order again."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="Found here: http://www.frontpages-web-hosting.net/support/frontpage.2003.how.to.826214.htm"
  19.  
  20.  
  21.  
  22.  
  23. sPlaceNameID=2
  24. sPCheck="HKCU\Software\Microsoft\Office\10.0\"
  25. sV1=sPCheck & "Common\Open Find\Places\UserDefinedPlaces\Place" & sPlaceNameID & "\ArrangeBy"
  26. ' 1=Name, 2=Type, 3=Size, 4=Date
  27.  
  28. Sub Plugin_Initialize 
  29. if RegPathExists(sPCheck) then
  30.    i=RegReadValue(sV1)
  31.  
  32.    if IsEmpty(i)=true or i=0 then setuielement 1,true
  33.  
  34.    if i=1 then setuielement 2,true
  35.    if i=2 then setuielement 3,true
  36.    if i=3 then setuielement 4,true
  37.    if i=4 then setuielement 5,true
  38. else
  39.    Call Disable()
  40. end if
  41. End Sub
  42.  
  43. Sub Plugin_CheckData(ElementIndex)
  44. End Sub
  45.  
  46. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  47.  if GetUIElement(1)=true then
  48.     v=0
  49.  else
  50.     if GetUIElement(2)=true then
  51.        v=1
  52.     else
  53.        if GetUIElement(3)=true then
  54.           v=2
  55.        else
  56.           if GetUIElement(4)=true then
  57.              v=3
  58.           else
  59.              v=4
  60.           end if
  61.        end if
  62.     end if
  63.  end if
  64.  
  65.  
  66.  if v>0 then 
  67.     Call RegWriteValue(sV1,v,2)
  68.  else 
  69.     if RegValueExists(sV1) then Call RegDeleteValue(sV1)
  70.  end if
  71. End Sub
  72.  
  73. Sub Plugin_Terminate 
  74. End Sub
  75.